home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / except.zip / MAIN.MAK < prev    next >
Makefile  |  1993-03-02  |  395b  |  14 lines

  1. !include <ntwin32.mak>
  2.  
  3. all: main.exe
  4.  
  5. main.obj: main.cpp b4dmsg.h b4dmsgrs.h
  6.     $(cc) $(cdebug) $(cflags) $(cvars) main.cpp
  7.  
  8. b4dmsgrs.obj: b4dmsgrs.cpp b4dmsg.h b4dmsgrs.h
  9.     $(cc) $(cdebug) $(cflags) $(cvars) b4dmsgrs.cpp
  10.  
  11. main.exe: main.obj b4dmsgrs.obj main.def
  12.       $(cvtobj) $(cvtdebug) *.obj
  13.       $(link) $(linkdebug) $(guiflags) -out:main.exe main.obj b4dmsgrs.obj $(guilibs)
  14.